1
0
鏡像自 https://github.com/minetest-mods/3d_armor.git 已同步 2025-07-12 13:20:24 +02:00

11 次程式碼提交

作者 SHA1 備註 日期
76f61d6c4e update integration test to minetest 5.2.0 2020-05-14 21:35:43 +02:00
b4eebf604e fix ci badge urls 2020-05-01 16:33:46 +02:00
0da0088889 Merge branch 'master' of https://github.com/Panquesito7/minetest-3d_armor 2020-05-01 16:30:35 +02:00
dbc6ccf089 Add missing fuel recipes for wood and cactus armor.
Fixes https://github.com/stujones11/minetest-3d_armor/issues/174
2020-04-30 08:18:29 +02:00
acd8b2647d Don't damage armor when drowning, eating or starving. 2020-04-30 08:15:37 +02:00
a6b89e7929 Fix count when armor is destroyed. 2020-04-29 11:10:11 +02:00
c3a755518e Silence png warnings.
Closes https://github.com/mt-mods/3d_armor/pull/1
2020-04-09 07:22:39 +02:00
4c99049600 Merge pull request #2 from mt-mods/code-quality
add luacheck and integration test workflows / fix luacheck errors
2020-02-17 17:36:52 +01:00
f81cb10f20 add luacheck and integration test workflows / fix luacheck errors
partially attends to https://github.com/pandorabox-io/pandorabox.io/issues/444 (the ObjectRef issue)
2020-02-13 12:26:32 +01:00
4adc602704 Update api.lua 2019-06-17 13:03:27 -05:00
e248752ee4 Use newer functions from MT/MTG 5.0.0+
These commits create more compatibility with MT/MTG 5.0.0+.
However, these commits (may) break compatibility with the 0.4-series.
2019-06-16 15:17:21 -05:00
共有 171 個檔案被更改,包括 237 行新增39 行删除

14
.github/workflows/integration-test.yml 已供應 一般檔案
查看文件

@ -0,0 +1,14 @@
name: integration-test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: integration-test
run: ./integration-test.sh

17
.github/workflows/luacheck.yml 已供應 一般檔案
查看文件

@ -0,0 +1,17 @@
name: luacheck
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: apt
run: sudo apt-get install -y luarocks
- name: luacheck install
run: luarocks install --local luacheck
- name: luacheck run
run: $HOME/.luarocks/bin/luacheck ./

34
.luacheckrc 一般檔案
查看文件

@ -0,0 +1,34 @@
unused_args = false
globals = {
"wieldview",
"armor",
"armor_i18n",
"inventory_plus"
}
read_globals = {
-- Stdlib
string = {fields = {"split"}},
table = {fields = {"copy", "getn"}},
-- Minetest
"vector", "ItemStack",
"dump", "VoxelArea",
-- deps
"default",
"minetest",
"unified_inventory",
"intllib",
"wardrobe",
"player_monoids",
"armor_monoid",
"sfinv",
"ARMOR_MATERIALS",
"ARMOR_FIRE_NODES",
"pova",
"skins",
"u_skins"
}

查看文件

@ -185,7 +185,6 @@ armor.set_player_armor = function(self, player)
local material = {count=1}
local preview = armor:get_preview(name)
local texture = "3d_armor_trans.png"
local textures = {}
local physics = {}
local attributes = {}
local levels = {}
@ -317,6 +316,8 @@ armor.punch = function(self, player, hitter, time_from_last_punch, tool_capabili
if not name then
return
end
local set_state
local set_count
local state = 0
local count = 0
local recip = true
@ -324,8 +325,8 @@ armor.punch = function(self, player, hitter, time_from_last_punch, tool_capabili
local list = armor_inv:get_list("armor")
for i, stack in pairs(list) do
if stack:get_count() == 1 then
local name = stack:get_name()
local use = minetest.get_item_group(name, "armor_use") or 0
local itemname = stack:get_name()
local use = minetest.get_item_group(itemname, "armor_use") or 0
local damage = use > 0
local def = stack:get_definition() or {}
if type(def.on_punched) == "function" then
@ -373,15 +374,21 @@ armor.punch = function(self, player, hitter, time_from_last_punch, tool_capabili
end
end
if damage == true and hitter == "fire" then
damage = minetest.get_item_group(name, "flammable") > 0
damage = minetest.get_item_group(itemname, "flammable") > 0
end
if damage == true then
self:damage(player, i, stack, use)
set_state = self.def[name].state
set_count = self.def[name].count
end
state = state + stack:get_wear()
count = count + 1
end
end
if set_count and set_count ~= count then
state = set_state or state
count = set_count or count
end
self.def[name].state = state
self.def[name].count = count
end
@ -471,7 +478,8 @@ end
armor.load_armor_inventory = function(self, player)
local _, inv = self:get_valid_player(player, "[load_armor_inventory]")
if inv then
local armor_list_string = player:get_attribute("3d_armor_inventory")
local meta = player:get_meta()
local armor_list_string = meta:get_string("3d_armor_inventory")
if armor_list_string then
inv:set_list("armor",
self:deserialize_inventory_list(armor_list_string))
@ -483,7 +491,8 @@ end
armor.save_armor_inventory = function(self, player)
local _, inv = self:get_valid_player(player, "[save_armor_inventory]")
if inv then
player:set_attribute("3d_armor_inventory",
local meta = player:get_meta()
meta:set_string("3d_armor_inventory",
self:serialize_inventory_list(inv:get_list("armor")))
end
end
@ -524,7 +533,7 @@ armor.drop_armor = function(pos, stack)
if node then
local obj = minetest.add_item(pos, stack)
if obj then
obj:setvelocity({x=math.random(-1, 1), y=5, z=math.random(-1, 1)})
obj:set_velocity({x=math.random(-1, 1), y=5, z=math.random(-1, 1)})
end
end
end

查看文件

@ -79,6 +79,19 @@ if armor.materials.wood then
damage_groups = {cracky=3, snappy=2, choppy=3, crumbly=2, level=1},
groups = {armor_feet=1, armor_heal=0, armor_use=2000, flammable=1},
})
local wood_armor_fuel = {
helmet = 6,
chestplate = 8,
leggings = 7,
boots = 5
}
for armor, burn in pairs(wood_armor_fuel) do
minetest.register_craft({
type = "fuel",
recipe = "3d_armor:" .. armor .. "_wood",
burntime = burn,
})
end
end
if armor.materials.cactus then
@ -110,6 +123,19 @@ if armor.materials.cactus then
armor_groups = {fleshy=5},
damage_groups = {cracky=3, snappy=3, choppy=2, crumbly=2, level=1},
})
local cactus_armor_fuel = {
helmet = 14,
chestplate = 16,
leggings = 15,
boots = 13
}
for armor, burn in pairs(cactus_armor_fuel) do
minetest.register_craft({
type = "fuel",
recipe = "3d_armor:" .. armor .. "_cactus",
burntime = burn,
})
end
end
if armor.materials.steel then

查看文件

@ -15,19 +15,23 @@ local F = minetest.formspec_escape
dofile(modpath.."/api.lua")
-- integration test
if minetest.settings:get_bool("enable_3d_armor_integration_test") then
dofile(modpath.."/integration_test.lua")
end
-- Legacy Config Support
local input = io.open(modpath.."/armor.conf", "r")
if input then
dofile(modpath.."/armor.conf")
input:close()
input = nil
end
input = io.open(worldpath.."/armor.conf", "r")
if input then
dofile(worldpath.."/armor.conf")
input:close()
input = nil
end
for name, _ in pairs(armor.config) do
local global = "ARMOR_"..name:upper()
@ -124,7 +128,8 @@ local function validate_armor_inventory(player)
return
end
local armor_prev = {}
local armor_list_string = player:get_attribute("3d_armor_inventory")
local attribute_meta = player:get_meta() -- I know, the function's name is weird but let it be like that. ;)
local armor_list_string = attribute_meta:get_string("3d_armor_inventory")
if armor_list_string then
local armor_list = armor:deserialize_inventory_list(armor_list_string)
for i, stack in ipairs(armor_list) do
@ -169,9 +174,9 @@ local function validate_armor_inventory(player)
end
end
local function init_player_armor(player)
local name = player:get_player_name()
local pos = player:get_pos()
local function init_player_armor(initplayer)
local name = initplayer:get_player_name()
local pos = initplayer:get_pos()
if not name or not pos then
return false
end
@ -214,20 +219,20 @@ local function init_player_armor(player)
end,
}, name)
armor_inv:set_size("armor", 6)
if not armor:load_armor_inventory(player) and armor.migrate_old_inventory then
local player_inv = player:get_inventory()
if not armor:load_armor_inventory(initplayer) and armor.migrate_old_inventory then
local player_inv = initplayer:get_inventory()
player_inv:set_size("armor", 6)
for i=1, 6 do
local stack = player_inv:get_stack("armor", i)
armor_inv:set_stack("armor", i, stack)
end
armor:save_armor_inventory(player)
armor:save_armor_inventory(initplayer)
player_inv:set_size("armor", 0)
end
for i=1, 6 do
local stack = armor_inv:get_stack("armor", i)
if stack:get_count() > 0 then
armor:run_callbacks("on_equip", player, i, stack)
armor:run_callbacks("on_equip", initplayer, i, stack)
end
end
armor.def[name] = {
@ -263,7 +268,7 @@ local function init_player_armor(player)
end
end
end
armor:set_player_armor(player)
armor:set_player_armor(initplayer)
return true
end
@ -291,24 +296,31 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
if not name then
return
end
local player_name = player:get_player_name()
for field, _ in pairs(fields) do
if string.find(field, "skins_set") then
minetest.after(0, function(player)
local skin = armor:get_player_skin(name)
armor.textures[name].skin = skin
armor:set_player_armor(player)
end, player)
minetest.after(0, function()
local pplayer = minetest.get_player_by_name(player_name)
if player then
local skin = armor:get_player_skin(name)
armor.textures[name].skin = skin
armor:set_player_armor(pplayer)
end
end)
end
end
end)
minetest.register_on_joinplayer(function(player)
default.player_set_model(player, "3d_armor_character.b3d")
minetest.after(0, function(player)
if init_player_armor(player) == false then
pending_players[player] = 0
local player_name = player:get_player_name()
minetest.after(0, function()
local pplayer = minetest.get_player_by_name(player_name)
if pplayer and init_player_armor(pplayer) == false then
pending_players[pplayer] = 0
end
end, player)
end)
end)
minetest.register_on_leaveplayer(function(player)
@ -381,8 +393,9 @@ if armor.config.punch_damage == true then
end)
end
minetest.register_on_player_hpchange(function(player, hp_change)
if player and hp_change < 0 then
minetest.register_on_player_hpchange(function(player, hp_change, reason)
if player and reason.type ~= "drown" and reason.hunger == nil
and hp_change < 0 then
local name = player:get_player_name()
if name then
local heal = armor.def[name].heal
@ -417,7 +430,7 @@ minetest.register_globalstep(function(dtime)
end
end)
-- Fire Protection and water breating, added by TenPlus1
-- Fire Protection and water breathing, added by TenPlus1.
if armor.config.fire_protect == true then
-- override hot nodes so they do not hurt player anywhere but mod

查看文件

@ -0,0 +1,25 @@
minetest.log("warning", "[TEST] integration-test enabled!")
minetest.register_on_mods_loaded(function()
minetest.after(1, function()
local data = minetest.write_json({ success = true }, true);
local file = io.open(minetest.get_worldpath().."/integration_test.json", "w" );
if file then
file:write(data)
file:close()
end
file = io.open(minetest.get_worldpath().."/registered_nodes.txt", "w" );
if file then
for name in pairs(minetest.registered_nodes) do
file:write(name .. '\n')
end
file:close()
end
minetest.log("warning", "[TEST] integration tests done!")
minetest.request_shutdown("success")
end)
end)

4
3d_armor/mod.conf 一般檔案
查看文件

@ -0,0 +1,4 @@
name = 3d_armor
depends = default
optional_depends = player_monoids, armor_monoid, pova, fire, ethereal, bakedclay, intllib
description = Adds craftable armor that is visible to other players.

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 408 B

之後

寬度:  |  高度:  |  大小: 258 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 383 B

之後

寬度:  |  高度:  |  大小: 261 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 399 B

之後

寬度:  |  高度:  |  大小: 253 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 369 B

之後

寬度:  |  高度:  |  大小: 241 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 404 B

之後

寬度:  |  高度:  |  大小: 252 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 376 B

之後

寬度:  |  高度:  |  大小: 239 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 408 B

之後

寬度:  |  高度:  |  大小: 261 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 383 B

之後

寬度:  |  高度:  |  大小: 258 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 408 B

之後

寬度:  |  高度:  |  大小: 265 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 383 B

之後

寬度:  |  高度:  |  大小: 270 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 399 B

之後

寬度:  |  高度:  |  大小: 245 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 369 B

之後

寬度:  |  高度:  |  大小: 226 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 407 B

之後

寬度:  |  高度:  |  大小: 261 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 382 B

之後

寬度:  |  高度:  |  大小: 272 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 393 B

之後

寬度:  |  高度:  |  大小: 233 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 369 B

之後

寬度:  |  高度:  |  大小: 232 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 377 B

之後

寬度:  |  高度:  |  大小: 267 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 366 B

之後

寬度:  |  高度:  |  大小: 233 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 516 B

之後

寬度:  |  高度:  |  大小: 409 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 446 B

之後

寬度:  |  高度:  |  大小: 285 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 500 B

之後

寬度:  |  高度:  |  大小: 396 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 441 B

之後

寬度:  |  高度:  |  大小: 282 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 504 B

之後

寬度:  |  高度:  |  大小: 393 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 444 B

之後

寬度:  |  高度:  |  大小: 286 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 516 B

之後

寬度:  |  高度:  |  大小: 404 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 446 B

之後

寬度:  |  高度:  |  大小: 289 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 524 B

之後

寬度:  |  高度:  |  大小: 429 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 446 B

之後

寬度:  |  高度:  |  大小: 290 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 508 B

之後

寬度:  |  高度:  |  大小: 402 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 444 B

之後

寬度:  |  高度:  |  大小: 281 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 514 B

之後

寬度:  |  高度:  |  大小: 416 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 446 B

之後

寬度:  |  高度:  |  大小: 286 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 499 B

之後

寬度:  |  高度:  |  大小: 385 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 440 B

之後

寬度:  |  高度:  |  大小: 274 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 453 B

之後

寬度:  |  高度:  |  大小: 324 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 437 B

之後

寬度:  |  高度:  |  大小: 275 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 476 B

之後

寬度:  |  高度:  |  大小: 348 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 386 B

之後

寬度:  |  高度:  |  大小: 261 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 468 B

之後

寬度:  |  高度:  |  大小: 337 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 382 B

之後

寬度:  |  高度:  |  大小: 271 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 464 B

之後

寬度:  |  高度:  |  大小: 325 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 358 B

之後

寬度:  |  高度:  |  大小: 203 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 476 B

之後

寬度:  |  高度:  |  大小: 350 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 386 B

之後

寬度:  |  高度:  |  大小: 257 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 476 B

之後

寬度:  |  高度:  |  大小: 353 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 386 B

之後

寬度:  |  高度:  |  大小: 269 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 491 B

之後

寬度:  |  高度:  |  大小: 353 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 382 B

之後

寬度:  |  高度:  |  大小: 251 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 474 B

之後

寬度:  |  高度:  |  大小: 338 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 382 B

之後

寬度:  |  高度:  |  大小: 253 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 495 B

之後

寬度:  |  高度:  |  大小: 354 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 386 B

之後

寬度:  |  高度:  |  大小: 267 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 462 B

之後

寬度:  |  高度:  |  大小: 327 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 368 B

之後

寬度:  |  高度:  |  大小: 237 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 408 B

之後

寬度:  |  高度:  |  大小: 216 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 406 B

之後

寬度:  |  高度:  |  大小: 207 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 399 B

之後

寬度:  |  高度:  |  大小: 194 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 408 B

之後

寬度:  |  高度:  |  大小: 217 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 408 B

之後

寬度:  |  高度:  |  大小: 220 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 406 B

之後

寬度:  |  高度:  |  大小: 202 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 415 B

之後

寬度:  |  高度:  |  大小: 224 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 409 B

之後

寬度:  |  高度:  |  大小: 209 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 410 B

之後

寬度:  |  高度:  |  大小: 215 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 440 B

之後

寬度:  |  高度:  |  大小: 256 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 438 B

之後

寬度:  |  高度:  |  大小: 261 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 434 B

之後

寬度:  |  高度:  |  大小: 246 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 440 B

之後

寬度:  |  高度:  |  大小: 258 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 440 B

之後

寬度:  |  高度:  |  大小: 264 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 438 B

之後

寬度:  |  高度:  |  大小: 256 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 433 B

之後

寬度:  |  高度:  |  大小: 246 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 438 B

之後

寬度:  |  高度:  |  大小: 252 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 426 B

之後

寬度:  |  高度:  |  大小: 244 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 392 B

之後

寬度:  |  高度:  |  大小: 188 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 389 B

之後

寬度:  |  高度:  |  大小: 180 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 386 B

之後

寬度:  |  高度:  |  大小: 183 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 392 B

之後

寬度:  |  高度:  |  大小: 186 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 392 B

之後

寬度:  |  高度:  |  大小: 189 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 389 B

之後

寬度:  |  高度:  |  大小: 178 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 389 B

之後

寬度:  |  高度:  |  大小: 180 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 400 B

之後

寬度:  |  高度:  |  大小: 194 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 373 B

之後

寬度:  |  高度:  |  大小: 151 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 410 B

之後

寬度:  |  高度:  |  大小: 214 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 420 B

之後

寬度:  |  高度:  |  大小: 245 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 408 B

之後

寬度:  |  高度:  |  大小: 217 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 410 B

之後

寬度:  |  高度:  |  大小: 212 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 410 B

之後

寬度:  |  高度:  |  大小: 213 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 420 B

之後

寬度:  |  高度:  |  大小: 238 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 423 B

之後

寬度:  |  高度:  |  大小: 250 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 420 B

之後

寬度:  |  高度:  |  大小: 233 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 415 B

之後

寬度:  |  高度:  |  大小: 211 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 425 B

之後

寬度:  |  高度:  |  大小: 288 B

未顯示二進位檔案。

之前

寬度:  |  高度:  |  大小: 394 B

之後

寬度:  |  高度:  |  大小: 298 B

本差異變更的檔案數量過多導致部分檔案未顯示 顯示更多